home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1997 September
/
Macworld (1997-09).dmg
/
Serious Software
/
Cherwell Scientific Demos
/
DIMPLE
/
Install Files
/
IOL
/
Roberts.IOL
< prev
next >
Wrap
Text File
|
1997-02-25
|
343b
|
19 lines
!DIMPLE IOL PROGRAM
! Edge detection using the Roberts operator
images
x input ;
d1 temp ;
d2 temp ;
y "Roberts" output ;
operations
d1 = filter x ( 1 , 0, 0,
0, -1, 0,
0, 0, 0 ) ;
d2 = filter x (0, 1, 0,
-1, 0, 0,
0, 0, 0 ) ;
y = sqrt( d1*d1 + d2*d2) ;